home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / COMPRESS.ZIP / COMPDEMO.DPR < prev    next >
Encoding:
Text File  |  1996-04-02  |  265 b   |  15 lines

  1. program Compdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Compmain in 'COMPMAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Title := 'TCompress 2.0 Demonstration';
  11.   Application.HelpFile := 'COMPRESS.HLP';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.